home *** CD-ROM | disk | FTP | other *** search
Text File | 1989-10-13 | 597 b | 34 lines | [TEXT/MPS ] |
- ; Version: 1.01
- ; Created: Friday, October 21, 1988 at 5:12:03 PM
- ;
- ; File: HyperXCmd.a
- ;
- ; Assembler Interface to the Macintosh Libraries
- ; Copyright Apple Computer, Inc. 1988
- ; All Rights Reserved
- ;
- ;--------------------------------------------------------------------
-
- ; result codes
-
-
- xresSucc EQU 0
- xresFail EQU 1
- xresNotImp EQU 2
-
- ; XCmdBlock Record
-
- XCmdBlock RECORD 0
- paramCount DS.W 1
- params DS.L 16
- returnValue DS.L 1
- passFlag DS.B 1
- DS.B 1
- entryPoint DS.L 1
- request DS.W 1
- result DS.W 1
- inArgs DS.L 8
- outArgs DS.L 4
- xCmdBlockEnd EQU *
- ENDR
-